home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 125
/
Freelog_MarsAvril2015_No125.iso
/
Musique
/
Quod Libet
/
quodlibet-3.3.0-installer.exe
/
bin
/
json
/
tests
/
test_pass3.pyc
(
.txt
)
< prev
next >
Wrap
Python Compiled Bytecode
|
2014-12-31
|
1KB
|
23 lines
# Source Generated with Decompyle++
# File: in.pyc (Python 2.7)
from json.tests import PyTest, CTest
JSON = '\n{\n "JSON Test Pattern pass3": {\n "The outermost value": "must be an object or array.",\n "In this test": "It is an object."\n }\n}\n'
class TestPass3(object):
def test_parse(self):
res = self.loads(JSON)
out = self.dumps(res)
self.assertEqual(res, self.loads(out))
class TestPyPass3(TestPass3, PyTest):
pass
class TestCPass3(TestPass3, CTest):
pass